home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetObjectInfo.h ----------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
- *
- * Description:
- *-------------------------------------------------------------------------
- */
- #ifndef __PGetObjectInfo__
- #define __PGetObjectInfo__
-
- #include "PListQuery.h"
-
- class PGetObjectInfo : public PListQuery
- {
-
- public:
-
- short nDrawingNumber;
- short cTypeOfObject;
- long xLeftOrStart;
- long yTopOrStart;
- long xRightOrEnd;
- long yBottomOrEnd;
-
- protected:
-
- PGetObjectInfo();
- PGetObjectInfo(ePMQuery op);
- virtual void Scan();
- };
-
- template <ePMQuery QUERY>
- class PGetObj : public PGetObjectInfo
- {
-
- public:
-
- PGetObj() : PGetObjectInfo(QUERY) { }
- };
-
- typedef PGetObj<pm_getobjectlist> PGetObjectList;
- typedef PGetObj<pm_getselectlist> PGetSelectList;
-
- #endif
-
- // end of PGetObjectInfo.h
-